home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 April / macformat-023.iso / Shareware City / Developers / NeoPersist 3.0.8 folder / NeoBench / Includes / CRawText.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-24  |  649 b   |  23 lines  |  [TEXT/MMCC]

  1. /********************************************************************
  2.  CRawText.h
  3. ********************************************************************/
  4.  
  5. #ifndef _H_CRawText
  6. #define _H_CRawText 1
  7.  
  8. #include "LCaption.h"
  9.  
  10.     // Forward declarations
  11.  
  12. class CRawText : public LCaption {
  13. public:
  14.                     CRawText(LView *aSuperView, ConstStr255Param aText, const short aX, const short aY, const short aWidth, const short aHeight);
  15. };
  16.  
  17. class CTimeText : public CRawText {
  18. public:
  19.                     CTimeText(LView *aSuperView, ConstStr255Param aText, const short aX, const short aY, const short aWidth, const short aHeight);
  20.    virtual void        SetValue(Int32 value);
  21. };
  22. #endif
  23.